home *** CD-ROM | disk | FTP | other *** search
/ Champak 122 / Vol 122.iso / games / super_cr.swf / scripts / DefineSprite_380 / frame_235 / DoAction.as
Encoding:
Text File  |  2011-01-06  |  352 b   |  20 lines

  1. stop();
  2. delete ball.onEnterFrame;
  3. ball._x = 312;
  4. ball._y = 20;
  5. ball._xscale = 970;
  6. ball._yscale = 970;
  7. ball.vx = 60;
  8. ball.onEnterFrame = function()
  9. {
  10.    this._rotation += 50;
  11.    this.vx *= 0.9;
  12.    this._x -= this.vx;
  13.    this._y += 9;
  14.    if(this._y > Stage.height / 2 + 100)
  15.    {
  16.       play();
  17.       delete this.onEnterFrame;
  18.    }
  19. };
  20.